home *** CD-ROM | disk | FTP | other *** search
- on identifySystem
- global gSISystem
- if (the machineType >= 1) and (the machineType <= 255) then
- set gSISystem to "MAC"
- else
- if the machineType = 256 then
- set gSISystem to "WIN"
- else
- set gSISystem to "UNKNOWN"
- end if
- end if
- end
-
- on identifyVideo
- global gSISystem, gSIVideo, gSIVideoPath
- if gSISystem = "MAC" then
- set gSIVideo to "QT"
- else
- if gSISystem = "WIN" then
- if fileExists(gSIVideoPath & "INTRO.MOV") then
- set gSIVideo to "QT"
- else
- if fileExists(gSIVideoPath & "INTRO.MPG") then
- set gSIVideo to "MPEG"
- else
- if fileExists(gSIVideoPath & "INTRO.AVI") then
- set gSIVideo to "VFW"
- else
- set gSIVideo to "UNKNOWN"
- end if
- end if
- end if
- else
- set gSIVideo to "UNKNOWN"
- end if
- end if
- end
-